Golang : Match strings by wildcard patterns with filepath.Match() function
Problem:
You want to match strings using the same wildcard patterns commonly used in Linux/Unix shells such as *.go
or *data[0-9]*
. How to do that?
Solution:
package main
import (
"fmt"
"path/filepath"
)
func main() {
filename := "start.txt"
pattern := "*art*"
matched, err := filepath.Match(pattern, filename)
if err != nil {
fmt.Println(err)
}
fmt.Println(matched)
//---------------------------------
pattern = "*fart*"
matched, err = filepath.Match(pattern, filename)
if err != nil {
fmt.Println(err)
}
fmt.Println(matched)
//---------------------------------
filename = "data123.csv"
pattern = "data[0-9]*"
matched, err = filepath.Match(pattern, filename)
if err != nil {
fmt.Println(err)
}
fmt.Println(matched)
}
Output :
true
false
true
NOTES: This example is for matching strings. For filenames in the current or specific directory. See this tutorial https://socketloop.com/tutorials/golang-use-wildcard-patterns-with-filepath-glob-example
It should work as well if you replace filepath.Match()
with path.Match()
Reference:
See also : Golang : Use wildcard patterns with filepath.Glob() example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+19.4k Golang : Example for DSA(Digital Signature Algorithm) package functions
+6.6k Golang : Find the longest line of text example
+8k Golang : Tell color name with OpenCV example
+5.2k Golang : How to deal with configuration data?
+16.4k Golang : Generate QR codes for Google Authenticator App and fix "Cannot interpret QR code" error
+7.5k Golang : Convert(cast) io.Reader type to string
+15.8k Golang : How to reverse elements order in map ?
+7.7k Golang : Scan files for certain pattern and rename part of the files
+7.7k Setting $GOPATH environment variable for Unix/Linux and Windows
+15.1k Golang : How to get Unix file descriptor for console and file
+12.2k Golang : Extract part of string with regular expression
+6.2k Golang : How to search a list of records or data structures